home *** CD-ROM | disk | FTP | other *** search
/ Dye Another Day / DyeAnotherDay.bin / swf / help.swf / scripts / DefineButton2_222 / BUTTONCONDACTION on(release, rollOver).as next >
Encoding:
Text File  |  2003-03-28  |  317 b   |  14 lines

  1. on(release, rollOver){
  2.    i = 1;
  3.    while(i < 10)
  4.    {
  5.       eval("_parent.but" + i).gotoAndStop(2);
  6.       i++;
  7.    }
  8.    gotoAndStop(1);
  9.    _root.fadein1 = true;
  10.    _parent.previouslabel._x = _parent._xmouse + 5;
  11.    _parent.previouslabel._y = _parent._ymouse + 5;
  12.    startDrag(_parent.previouslabel,0);
  13. }
  14.